@charset "utf-8";

/* ===
所有类名用小写，中横线
为避免跟其他人定义的类名冲突，所有类名要加前缀，简单的类名不可单独写样式（common.css,base.css中已有的除外），可通过于其他类名合并叠加使用。
例如.infolist.dot合并在一起写
简写不可单独写样式的类名但不限于：.res, .dot, .line .tit, .more, .detail, .txt, .pic, .img, .space*, .col*, .hd, .bd, .intro...等
====
 */
input::-webkit-input-placeholder {
    color: #cccccc;
}

a:hover {
    color: #185183;
}

.fontcolor-blue {
    color: #185183;
}

.fontcolor-red {
    color: #A81010;
}

/*** layout ***/
/***
简单参考栅格布局，将容器进行了 12 等分，如设计图不规律分割列宽，则采用自定义类名如zwgk-col-l(类名一定要包含col-)替代col-*，。所有列在1200px下响应变成一列
.container:包裹页面上的内容，按当前设计修改宽度，作为默认宽度
.container-fluid:包裹页面上的内容,它用于 100% 宽度
.width-1400：1400px宽度
row-space20：每列间隔宽度20px
row-space30：每列间隔宽度30px
row-space40：每列间隔宽度40px
***/
.container:after,
.container:before {
    display: table;
    content: "";
}

.container:after {
    clear: both;
}

.container {
    width: 1200px;
    margin-right: auto;
    margin-left: auto;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.container.width-1400 {
    width: 1400px;
}

@media (max-width: 1480px) {


    .container,
    .container[class*="width-"] {
        width: 1200px;
    }
}

@media (max-width: 1240px) {

    .container,
    .container[class*="width-"] {
        width: 970px;
    }
}

@media (max-width: 992px) {

    .container,
    .container[class*="width-"] {
        width: 750px;
    }
}

@media (max-width: 768px) {

    .container,
    .container[class*="width-"] {
        width: auto;
    }
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row:after,
.row:before {
    content: "";
    display: block;
    clear: both;
}

.row-space20 {
    margin-left: -10px;
    margin-right: -10px;
}

.row-space20>* {
    padding-left: 10px;
    padding-right: 10px;
}

.row-space30 {
    margin-left: -15px;
    margin-right: -15px;
}

.row-space30>* {
    padding-left: 15px;
    padding-right: 15px;
}

.row-space40 {
    margin-left: -20px;
    margin-right: -20px;
}

.row-space40>* {
    padding-left: 20px;
    padding-right: 20px;
}

.row>[class*="col-"] {
    position: relative;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 1px;
    float: left;
}

.row>.col-12 {
    width: 100%;
}

.row>.col-11 {
    width: 91.66666667%;
}

.row>.col-10 {
    width: 83.33333333%;
}

.row>.col-9 {
    width: 75%;
}

.row>.col-8 {
    width: 66.66666667%;
}

.row>.col-7 {
    width: 58.33333333%;
}

.row>.col-6 {
    width: 50%;
}

.row>.col-5 {
    width: 41.66666667%;
}

.row>.col-4 {
    width: 33.33333333%;
}

.row>.col-3 {
    width: 25%;
}

.row>.col-2 {
    width: 16.66666667%;
}

.row>.col-1 {
    width: 8.33333333%;
}

@media (max-width: 1240px) {
    .row[class*="row-space"] {
        margin-left: 0;
        margin-right: 0;
    }

    .row>[class*="col-"] {
        float: none;
        width: 100%;
    }

    .row[class*="row-space"]>[class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }
}

/* tab */
/* 
两种风格标题选项卡样式
.tab-brief:简洁型
.tab-card:卡片型
.res:需要小屏下响应时用，常用于标题个数多，一排放不下的情况
.js-tab:js-开头的类名只用于脚本查询DOM用，不建议在该类下写样式
.more:率属于某一块下的类名，不建议单独写全局样式，会影响到其他更多样式
 */
.tab-brief>.hd {
    border-bottom: #c2cfe3 1px solid;
    padding-bottom: 3px;
}

.tab-brief>.hd ul {
    float: left;
}

.tab-brief>.hd li {
    float: left;
    position: relative;
    /*padding: 0 0 14px;*/
    font-size: 1.25em;
    color: #666666;
}

.tab-brief>.hd li+li {
    margin-left: 40px;
}

.tab-brief>.hd li a {
    color: #666;
    padding: 2px;
    border-radius: 2px;
}

.tab-brief>.hd li:after {
    content: '';
    position: absolute;
    top: 10%;
    right: -20px;
    width: 2px;
    height: 80%;
    background: #000;
    transition: all .3s;
    -webkit-transition: all .3s;
    overflow: hidden;
}

.tab-brief>.hd li:last-of-type:after {
    display: none;
}

.tab-brief>.hd li.on a {
    color: #fff;
    /*font-weight: bold;*/
    background-color: #185183;
}

.tab-brief>.hd .more {
    padding-top: 6px;
    float: right;
}

.tab-card>.hd {
    line-height: 46px;
    background: #f4f4f4;
}

.tab-card>.hd ul {
    float: left;
}

.tab-card>.hd li {
    float: left;
    position: relative;
    font-size: 1.125em;
}

.tab-card>.hd li a {
    display: block;
    padding: 0 20px;
    text-align: center;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
    background: #f4f4f4;
}

.tab-card>.hd li.on {
    cursor: pointer;
}

.tab-card>.hd li.on a {
    background: #2A6AC9;
    color: #fff;
}

.tab-card>.hd li.on:after {
    width: 100%;
}

.tab-card>.hd .more {
    float: right;
    margin-right: 15px;
}

.tab-card.arrow>.hd {
    font-weight: normal;
}

.tab-card.arrow>.hd li.on:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    top: 100%;
    border: transparent solid 8px;
    border-top-color: #2A6AC9;
    margin-left: -8px;
}

.tab-brief .bd>.item .infolist,
.tab-card .bd>.item .infolist {
    margin-top: 10px;
}

.tab-brief .bd>.item .infolist-dateleft {
    margin-top: 10px;
}

.js-tab .more a+a {
    display: none;
}

.js-tab>.bd>*+* {
    display: none;
}

.com-more a {
    color: #999999;
}

.com-more a:hover {
    color: #185183;
}

.m-com-more {
    clear: both;
    margin-top: 20px;
    text-align: center;
    line-height: 40px;
    background-color: #f5f5f5;
    border-radius: 5px;
    display: none;
}

.m-com-more a {
    color: #666;
}

.m-com-more a:hover {
    color: #333;
}

.m-com-more.bg-white {
    background: #fff;
}

.com-title .com-more {
    float: right;
    padding-top: 8px;
}

@media (max-width: 640px) {
    .res.tab-brief>.hd ul li {
        margin: 0 10px 10px 0 !important;
        padding: 0;
        border-bottom: none;
        font-size: 1.125em;
    }

    .res.tab-brief>.hd ul li a {
        display: block;
        padding: 7px 12px !important;
        line-height: 1.5;
        background-color: #f1f1f1;
        color: #666;
    }

    .res.tab-brief>.hd ul li.on a {
        color: #fff;
        background-color: #2A6AC9;
    }

    .res.tab-brief>.hd li:after {
        display: none;
    }

    .res.tab-card>.hd {
        margin-bottom: -10px;
        background: none;
        border-bottom: #dfdfdf 1px solid;
    }

    .res.tab-card>.hd ul li {
        margin: 0 10px 10px 0 !important;
        font-size: 1.125em;
    }

    .res.tab-card>.hd ul li a {
        padding: 7px 12px !important;
        height: auto;
        line-height: 1.5;
        color: #666;
    }

    .res.tab-card>.hd ul li.on a {
        background: #2A6AC9;
        color: #fff;
    }

    .res.tab-card>.bd .item>.infolist {
        margin-top: 0;
    }

    .tab>.hd .more,
    .tab-card>.hd .more,
    .tab-brief>.hd .more {
        display: none;
    }

    .m-com-more {
        display: block;
    }

}


/* infolist */
/***
稿件列表样式：
.dot:标题前带小点
.md:日期-月日
.ymd：日期-年月日
.line:每条信息之间含分割下滑线
.col2:两列
.col3:三列
.col4:四列
.space20:多列之间含20px的间距
.space30:多列之间含30px的间距
多列在768以下响应变成一列
.res:480以下标题由一行响应成多行显示
以上类名采用简写方式，便于阅读书写，不可单独写样式，以免冲突覆盖样式。注意不要与base.css中的全家类名冲突
 ***/
.infolist {
    clear: both;
}

.infolist li {
    position: relative;
    line-height: 37px;
    overflow: hidden;
    vertical-align: top;
    /*border-bottom: 1px dashed #F2F2F2;*/
}

.infolist li a {
    float: left;
    position: relative;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}

.infolist li,
.infolist li a {
    -moz-box-sizing: border-box;
    -welit-box-sizing: border-box;
    box-sizing: border-box;
}

.infolist li .time {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 26px;
    margin: auto 0;
    color: #999999;
}

/*查看更多*/
.infolist li.check-more a {
    font-size: 0.8em;
    color: #185183;
}

.infolist li a br {
    display: none;
}

.infolist li:hover a,
.infolist li a:hover {
    color: #185183;
    text-decoration: underline;
}

.infolist li:hover span {
    color: #185183;
}

.infolist.md li {
    padding-right: 60px;
}

.infolist.ymd li {
    padding-right: 100px;
}

.infolist[class*="dot"] li a {
    padding-left: 18px;
}

.infolist[class*="dot"] li a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2.5px;
    width: 5px;
    height: 5px;
    background: #999999;
}

.infolist[class*="dot"] li:hover a:before {
    background: #185183;
}

.infolist.dot-blue li a:before {
    background: #2A6AC9;
}

.infolist.line li {
    border-bottom: 1px solid #e1e5eb;
}

.infolist.line li {
    padding-top: 14px;
    padding-bottom: 14px;
}

.infolist.fs18 {
    font-size: 1.125em;
}

.infolist.fs18 li {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 30px;
}

.infolist.fs18.md li {
    padding-right: 70px;
}

.infolist.fs18.ymd li {
    padding-right: 110px;
}

.infolist.col2 li,
.infolist.col3 li,
.infolist.col4 li {
    float: left;
}

.infolist.col2 li {
    width: 50%;
}

.infolist.col3 li {
    width: 33.33333%;
}

.infolist.col4 li {
    width: 25%;
}

.infolist.space20 {
    margin-left: -10px;
    margin-right: -10px;
}

.infolist.space20 li {
    padding-left: 10px;
    padding-right: 10px;
}

.infolist.space20 li .time {
    right: 10px;
}

.infolist.space20.md li {
    padding-right: 70px;
}

.infolist.space20.ymd li {
    padding-right: 110px;
}

.infolist.space30 {
    margin-left: -15px;
    margin-right: -15px;
}

.infolist.space30 li {
    padding-left: 15px;
    padding-right: 15px;
}

.infolist.space30 li .time {
    right: 15px;
}

.infolist.space30.md li {
    padding-right: 75px;
}

.infolist.space30.ymd li {
    padding-right: 115px;
}

/* multirows 多行，日期在右下角， 不能样式自动截取字数，用cms标签截取标题字数 */
.infolist.multirows li a {
    white-space: normal;
    word-break: break-all;
}

.infolist.multirows li h4 {
    font-weight: normal;
    font-size: 1em;
    min-height: 56px;
}

.infolist.multirows li {
    padding-right: 0;
}

.infolist.multirows .time {
    top: auto;
    bottom: 9px;
}

.infolist.multirows[class*="dot"] li a:before {
    top: 12px;
    margin-top: 0;
}

.infolist-dateleft li {
    position: relative;
    padding-left: 80px;
    padding-top: 7px;
    padding-bottom: 7px;
    min-height: 56px;
}

.infolist-dateleft li h4 {
    font-size: 1em;
    line-height: 28px;
    font-weight: normal;
}

.infolist-dateleft li .time {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 60px;
    height: 56px;
    color: #346ABA;
    background: #ECF3FA;
    text-align: center;
}

.infolist-dateleft li .time b {
    display: block;
    padding: 6px 0 3px;
    font-size: 1.125em;
}

.infolist-dateleft li .time em {
    font-style: normal;
    font-size: 0.875em;
    display: block;
    transform: scale(.9);
}

.infolist li.liline {
    float: none;
    clear: both;
    width: 100%;
    line-height: 0;
    padding: 30px 0;
}

.infolist li.liline:after {
    content: '';
    display: block;
    margin: 0 15px;
    height: 1px;
    font-size: 0;
    border-bottom: #dcdbdb 1px dotted;
    opacity: 0.8;
}

.infolist li.liline:last-child {
    padding-bottom: 0;
}

.infolist li.liline:before {
    display: none;
}

@media (max-width: 1240px) {
    .infolist.multirows li h4 {
        min-height: auto;
    }

    .infolist.multirows li a {
        position: static;
        float: none;
        max-width: none;
        padding-left: 0;
        padding-right: 12px;
    }

    .infolist.multirows li .time {
        position: static;
        display: inline-block;
    }

    .infolist.multirows[class*="dot"] li {
        position: relative;
        padding-left: 18px;
    }

    .infolist.multirows[class*="dot"] li a:before {
        top: 20px;
        margin-top: 0;
    }
}

@media (max-width: 768px) {

    .infolist.col2,
    .infolist.col3,
    .infolist.col4 {
        margin-left: 0;
        margin-right: 0;
    }

    .infolist.col2 li,
    .infolist.col3 li,
    .infolist.col4 li {
        width: 100%;
        padding-left: 0;
    }

    .infolist.md[class*="space"] li {
        padding-right: 60px;
    }

    .infolist.ymd[class*="space"] li {
        padding-right: 100px;
    }

}

@media (max-width: 480px) {
    .res.infolist li {
        padding-right: 0 !important;
        position: relative;
    }

    .res.infolist li a {
        position: static;
        float: none;
        max-width: none;
        padding-left: 0;
        padding-right: 12px;
        white-space: normal;
    }

    .res.infolist li .time {
        position: static;
        display: inline-block;
    }

    .res.infolist li a:before {
        top: 20px;
        margin-top: 0;
    }

    /*10+padding*/
    .res.infolist.line li a:before {
        top: 24px;
    }

    .res.infolist[class*="dot"] li {
        padding-left: 18px;
    }
}


/* piclist */
/* ===
.space*:每一列之间间隔*px
.col*: 列表分*列
.ratio-***:图片比例
===*/
.piclist {
    overflow: hidden;
    zoom: 1;
}

.piclist li {
    position: relative;
    float: left;
}

.piclist li a {
    display: block;
    font-size: 1em;
    overflow: hidden;
}

.piclist li .pic {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.piclist li .pic img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.piclist li .txt {
    display: block;
    padding: 15px;
    text-align: center;
    background-color: #f4f4f4;
}

.piclist li .txt br {
    display: none;
}

.piclist.col3 li {
    width: 25%;
}

.piclist.col4 li {
    width: 25%;
}

.piclist.space30 {
    margin-left: -15px;
    margin-right: -15px;
}

.piclist.space30 li a {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
}

.piclist.ratio-page-tpxw .pic {
    padding-bottom: 56.25%;
}

@media (max-width: 768px) {
    .piclist.space30 {
        margin-left: -10px;
        margin-right: -10px;
    }

    .piclist.space30 li a {
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 640px) {
    .piclist[class*="col"] li {
        width: 50%;
    }
}


/* com-title */
.com-title h3 {
    position: relative;
    display: inline-block;
    font-size: 1.25em;
    font-weight: bold;
    color: #185183;
}

.com-title h3 a {
    color: #185183;
}

.com-title h3 a:hover {
    color: #185183;
}

.com-title.square h3:before {
    position: absolute;
    top: 15%;
    left: 0;
    content: "";
    width: 4px;
    height: 80%;
    background-color: #185183;
}

.com-title.square h3 {
    padding-left: 20px;
}

.com-title.square.red h3:before {
    background: #a81010;
}

.com-title.underline h3 {
    padding-bottom: 18px;
}

.com-title.underline h3:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #185183;
}

.com-title.fs28 h3 {
    font-size: 1.75em;
}

/* 当前位置crumb */
.crumb {
    padding: 25px 0;
}

.crumb h2 {
    position: relative;
    padding-left: 26px;
    line-height: 28px;
    font-size: 1em;
    font-weight: normal;
    color: #999999;
}

.crumb h2:before {
    position: absolute;
    left: 0;
    top: 7px;
    content: '';
    width: 12px;
    height: 16px;
    background: url(../images/public/icon_crumb.png) no-repeat;
    background-size: 100% 100%;
}

.crumb a {
    color: #666;
}

.crumb a:hover {
    color: #333;
}

.crumb span {
    color: #333;
}

.crumb.gray {
    padding-top: 20px;
    padding-bottom: 20px;
    background: #f5f5f5;
}

@media (max-width: 992px) {
    .crumb h2 {
        padding-left: 28px;
        background-position: 0 24px;
    }
}

/* 内页innerpage */
.body-bg {
    background: #fafafa;
}

.container-innerpage>.padding {
    position: relative;
    padding: 25px;
    background: #fff;
}

@media (max-width: 992px) {
    .container-innerpage>.padding {
        padding: 20px;
    }
}

.sidebar {
    float: left;
    width: 20%;
    position: relative;
    padding-bottom: 2000px;
    margin-bottom: -2000px;
    background: #f3f3f3;
}

.sidebar .inbox {
    position: relative;
    /*padding-left: 16px;*/
    /*padding-right: 16px;*/
}

.sidebar:after {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    background: #E5E5E5;
}

.sidebar:after {
    right: 0;
}

.maincontent {
    float: right;
    position: relative;
    width: 80%;
}

.maincontent .inbox {
    margin-left: 66px;
}

.maincontent .inbox.linetop {
    border-top: #e7e7e7 1px solid;
    ;
}

.maincontent .detail {
    padding-right: 0 !important;
    padding-bottom: 0 !important;
}

.maincontent .page_list {
    margin-bottom: 15px;
}

.parentname {
    position: relative;
    z-index: 11;
    margin-bottom: 10px;
    font-size: 1.625em;
    font-weight: bold;
    text-align: center;
    /*border-bottom: 1px solid #D1D1D1;*/
    background: url(../images/public/list_tt_bg.png) 100% 100% no-repeat;
    background-size: 100% 100%;
    color: #fff;
}

.parentname span {
    position: relative;
    display: inline-block;
    padding: 15px 0 10px;
    line-height: 1.4em;
}

.parentname span:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 3px;
    background: #2A6AC9;
    display: none;
}

.sidenav {
    position: relative;
    z-index: 13;
    overflow: hidden;
}

.sidenav li a {
    position: relative;
    display: block;
    padding: 17px 0;
    border-bottom: 1px solid #E5E5E5;
    font-size: 1.25em;
    line-height: 1.4;
    text-align: center;
}

.sidenav li a:hover {
    /*color: #2A6AC9;*/
    color: #333;
}

.sidenav li.on a {
    /*border-bottom-color: #dde6f3;*/
    border-bottom-color: transparent;
    /*font-weight: bold;*/
    /*color: #2A6AC9;*/
    background-color: rgb(209, 219, 228);
}

.sidenav li.on a:after {
    content: '';
    width: 0px;
    height: 0px;
    position: absolute;
    right: 10px;
    bottom: 20px;
    border: 10px solid transparent;
    /*以下四个样式对应四种三角形，任选其一即可实现*/
    /* border-top-color:lightseagreen; */
    border-left-color: #999;
    /* border-right-color:lightseagreen;*/
    /*border-bottom-color: lightseagreen;*/
    /*background: url(../images/public/ri.png) no-repeat;*/
}

.page-infolist {
    padding-top: 26px;
}

.page-infolist.split li:nth-child(5n),
.page-infolist.split .addLine {
    margin-bottom: 26px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e7e7e7;
}

.singlepage {
    clear: both;
    line-height: 2.25;
    overflow: hidden;
}

.singlepage p {
    margin: 15px 0;
}

.singlepage table,
.singlepage video,
.singlepage img {
    max-width: 100%;
}

.list-title {
    display: block;
    height: 50px;
    line-height: 47px;
    color: #015293;
    /*border-bottom: 1px solid #015293;*/
    position: relative;
    margin-left: 66px;
}

.list-title h2 {
    font-size: 24px;
    font-weight: bolder;
    float: left;
    border-bottom: 3px solid #015293;
    position: relative;
}

@media (max-width: 992px) {

    .sidebar,
    .maincontent {
        float: none;
        width: 100%;
    }

    .sidebar {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .sidebar:after {
        display: none;
    }

    .sidebar .inbox {
        padding-left: 0;
        padding-right: 0;
    }

    .sidebar .inbox:after {
        display: none;
    }

    .maincontent .inbox {
        padding-left: 0;
        margin-left: 0;
    }

    .parentname {
        font-size: 1.375em;
        text-align: left;
        padding-left: 15px;
        padding-right: 15px;
    }

    .sidenav li a {
        font-size: 1.125em;
        text-align: left;
        padding-left: 15px;
        padding-right: 15px;
    }

}


/*分页*/
.pagination {
    padding: 20px 0 0;
    font-size: 14px;
    color: #333;
    line-height: 28px;
    clear: both;
}

.pagination li {
    display: inline-block;
}

.pagination .arrow a {
    color: #333;
}

.pagination .total_count,
.pagination .arrow a,
.pagination .arrow span,
.pagination .page_jump a {
    display: inline-block;
    padding: 0 10px;
    margin: 4px;
    zoom: 1;
    border: #dfdfdf 1px solid;
    border-radius: 3px;
}

.pagination #page_input {
    width: 40px;
    height: 28px;
    color: #888;
    text-align: center;
    border: #dfdfdf 1px solid;
    border-radius: 3px;
    background: #fff;
}

.pagination .total_count,
.pagination .arrow a,
.pagination .page_jump a {
    transition: all .2s;
    -webkit-transition: all .2s;
    background: #f5f6f7;
    background: -webkit-linear-gradient(#ffffff 10%, #f1f1f1);
    background: -o-linear-gradient(#ffffff 10%, #f1f1f1);
    background: -moz-linear-gradient(#ffffff 10%, #f1f1f1);
    background: linear-gradient(#ffffff 10%, #f1f1f1);
}

.pagination .arrow span {
    background: #f5f5f5;
    color: #999;
}

.pagination .arrow a:hover,
.pagination .page_jump a:hover,
.pagination .arrow .current {
    background: #185183;
    border-color: #185183;
    color: #fff;
    text-decoration: none;
}

.pagination .arrow .current {
    font-weight: bold;
}

.pagination .page_jump {
    margin-left: 4px;
}

.pagination .page_jump a {
    margin-left: 6px;
}

.pageplug input::-webkit-inner-spin-button,
.pageplug input::-webkit-outer-spin-button {
    -webkit-appearance: none
}

.pageplug input[type=number] {
    -moz-appearance: textfield
}

.pageplug {
    font-size: 14px;
    line-height: 28px;
    clear: both;
}

.pageplug.center {
    text-align: center;
}

.pageplug a,
.pageplug span {
    display: inline-block;
    margin: 4px;
    border-radius: 3px;
    background: linear-gradient(#fff 10%, #f1f1f1);
    border: 1px #dfdfdf solid;
    text-align: center;
    padding: 0 10px
}

.pageplug b {
    font-weight: normal;
}

.pageplug .page_jump {
    background: 0 0;
    border: none;
    line-height: 30px;
}

.pageplug .current,
.pageplug .zxfokbtn:hover,
.pageplug a:hover {
    background: #185183;
    border-color: #185183;
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.pageplug .zxfinput {
    width: 40px;
    height: 28px;
    margin: 0 4px;
    color: #888;
    text-align: center;
    border: #dfdfdf 1px solid;
    border-radius: 3px;
    background: #fff
}

.pageplug .disabled {
    background: #f5f5f5;
    color: #999;
}

.columnMore {
    display: block;
    width: 120px;
    margin-top: 40px;
    margin-bottom: 20px;
    background-color: #2A6AC9;
    line-height: 36px;
    color: #fff;
    height: 36px;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    transition: .3s all;
}

.columnMore:hover {
    color: #fff;
    background-color: #005293
}

.columnMore.center {
    margin-left: auto;
    margin-right: auto;
}

/* 外链跳转 */
.alert-mengban {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    filter: alpha(opacity=80) !important;
    width: 100%;
    height: 100%;
    display: none;
}

.alert-warning {
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -300px;
    margin-top: -160px;
    width: 600px;
    height: 270px;
    background: #fff;
    z-index: 10001;
    display: none;
    border: 2px solid;
    border-radius: 10px;
}

.alert-delete {
    width: 100%;
    height: 38px;
    position: relative;
}

.alert-delete span {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background: #bebebe;
    cursor: pointer;
}

.alert-delete span:hover {
    background: #929292;
}

.alert-wzsm {
    width: 520px;
    height: 100px;
    margin: 15px auto 0;
    line-height: 35px;
    font-size: 1.5em;
    color: #000;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #d4d4d4;
}

.alert-footer {
    width: 100%;
    padding: 25px 0;
    text-align: center;
    color: #000;
}

.alert-footer span {
    cursor: pointer;
    display: inline-block;
    margin: 0 12px;
    font-size: 1.25em;
}

.alert-warning .continue {
    width: 124px;
    height: 42px;
    color: #ab0d07;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    border: #e1e1e1 1px solid;
    text-align: center;
    line-height: 42px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) inset;
    -webikt-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) inset;
}

.alert-warning .fangqi {
    line-height: 42px;
    color: #ab0d07;
}

@media (max-width: 640px) {
    .alert-warning {
        left: 2%;
        margin-left: 0;
        width: 96%;
        height: auto;
    }

    .alert-wzsm {
        width: 90%;
        height: auto;
        margin: 15px auto 0;
        line-height: 28px;
        font-size: 18px;
        color: #000;
        text-align: center;
    }

    .sidenav li a {
        width: calc(100% / 2);
        float: left;
        box-sizing: border-box;
    }

    .crumb {
        padding: 10px;
    }
}

.list-bg {
    background-color: #f2f2f2;
    padding-top: 30px;
}

.list-bg .container {
    background-color: #fff;
    padding: 20px 15px;
}

.ggbg {
    padding-top: 20px;
    background-color: #f1f6fc;
}